Instance 0

Centrality↓:3.9815666016484963  Specificity↑:0.0
Class680.migrate()#11{
                                String line = in.readLine();
                                if(line.startsWith("101 imqbroker"))
                                    hasOld = true;
}


Instance 1

Centrality↓:3.9925575992576476  Specificity↑:0.2706705664732254
Class380.findHeader(BufferedReader r)#1{
            String line = r.readLine();
            if (line==null)
                return false;
            if (line.startsWith("# A fatal error has been detected by the Java Runtime Environment:"))
                return true;
}


Instance 2

Centrality↓:3.9815666016484963  Specificity↑:0.36787944117144233
Class30.checkConnectable(ZooKeeperInfo.Broker broker)#4{
}


Instance 3

Centrality↓:3.983133471859608  Specificity↑:0.7357588823428847
Class170.decode()#6{
        type = n.substring("type ".length());
        n = br.readLine();
        if (n == null || !n.startsWith("tag ")) {
          throw new CorruptObjectException(tagId, "no tag name");
        }
}


Instance 4

Centrality↓:3.994124469468759  Specificity↑:2.4779472135018796
Class40.readNumber(BufferedReader reader,String title){
  String line=reader.readLine();
  if(line == null)
      throw new LucreIOException("End of file when expecting '"+title+"'");
  if(!line.startsWith(title))
      throw new LucreIOException("Read '"+line+"' when expecting '"+title+"'");
  return new BigInteger(line.substring(title.length()),16);
}